home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / ContourOptionsPanel.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  839 b   |  48 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: ContourOptionsPanel.h,v 1.7 1993/05/04 16:21:23 davis Exp $ */
  11.  
  12.  
  13. #import "OptionsPanel.h"
  14.  
  15. @class Pane;
  16.  
  17. @interface ContourOptionsPanel:OptionsPanel
  18. {
  19.     BOOL    enabled;
  20.  
  21.     id        kindMatrix;
  22.     id        pointsField;
  23.     id        orderField;
  24.     id        keyButton;
  25.  
  26.     id        levelsKindButton;
  27.     id        levelsKindField;
  28.     id        levelsKindBox;
  29.  
  30.     Pane    *autoPane,        /* The Panes */
  31.         *seriesPane,
  32.         *userPane,
  33.         *currentPane;
  34. }
  35.  
  36. - init;
  37. - free;
  38.  
  39. - (BOOL)isEnabled;
  40.  
  41. - doSetKind:sender;
  42. - doSetPoints:sender;
  43. - doSetOrder:sender;
  44. - doSetLevelsKind:sender;
  45. - doSetKey:sender;
  46.  
  47. @end
  48.